1   /*
2    * Copyright (C) 2010 The Guava Authors
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package com.google.common.collect;
18  
19  /**
20   * Unit test for {@link ForwardingSortedSetMultimap}.
21   *
22   * @author Kurt Alfred Kluever
23   */
24  public class ForwardingSortedSetMultimapTest extends ForwardingSetMultimapTest {
25  
26    @Override public void setUp() throws Exception {
27      super.setUp();
28      /*
29       * Class parameters must be raw, so we can't create a proxy with generic
30       * type arguments. The created proxy only records calls and returns null, so
31       * the type is irrelevant at runtime.
32       */
33      @SuppressWarnings("unchecked")
34      final SortedSetMultimap<String, Boolean> multimap =
35          createProxyInstance(SortedSetMultimap.class);
36      forward = new ForwardingSortedSetMultimap<String, Boolean>() {
37        @Override protected SortedSetMultimap<String, Boolean> delegate() {
38          return multimap;
39        }
40      };
41    }
42  }